home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume90 / unix / cat / README < prev   
Text File  |  1990-02-02  |  644b  |  27 lines

  1.  
  2. cat - concatenate files
  3.  
  4. Usage:
  5.  
  6.     cat [>outfile] file [file..]
  7.  
  8. This program concatenates files specified on the command line and writes
  9. the result to standard output, which can then be redirected.
  10.  
  11. Unlike the cat distributed with Aztec C, even the brand new 5.0 release, 
  12. this cat calls scdir so it can do wildcard expansion.
  13.  
  14. Example:
  15.  
  16.     cat >prototypes.h *.pro
  17.  
  18. It could be more fancy (see your nearby System V and BSD manuals for
  19. possibilities), but it can do what you usually need it to do.
  20.  
  21. This version of cat is released to the public domain.  It is written in 
  22. ANSI C.
  23.  
  24. Author:
  25.     Karl Lehenbauer (karl@sugar.hackercorp.com)
  26.     1-Feb-1990
  27.